home *** CD-ROM | disk | FTP | other *** search
/ Time Warp / Time Warp.iso / pc / timewarp / lab.dxr / 00289.ls < prev    next >
Encoding:
Text File  |  1997-06-09  |  639 b   |  23 lines

  1. on exitFrame
  2.   global end
  3.   if the movieTime of sprite 5 < end then
  4.     if (the movieTime of sprite 5 > 700) and (the movieTime of sprite 5 < 2700) then
  5.       puppetSprite(6, 1)
  6.       set the castNum of sprite 6 to cast "ENTERING CYBERSPACE"
  7.       updateStage()
  8.     else
  9.       if the movieTime of sprite 5 > 2700 then
  10.         puppetSprite(6, 1)
  11.         set the castNum of sprite 6 to cast "ARRIVING HANGAR"
  12.         updateStage()
  13.       end if
  14.     end if
  15.     go(the frame - 1)
  16.   else
  17.     set the movieTime of sprite 5 to end - 5
  18.     go(the frame + 1)
  19.     set the castNum of sprite 3 to cast "CENTER PANEL OFF"
  20.     updateSpeed()
  21.   end if
  22. end
  23.